home *** CD-ROM | disk | FTP | other *** search
- #include <string.h>
- #include "extras.h"
-
- /* Note that the MiNTlibs' _bcopy() has all the necessary semantics of
- memmove() regarding overlapping objects. */
-
- char *lmemmove(dest, source, len)
- char *dest, *source;
- long len;
- {
- _bcopy(source, dest, len);
- return dest;
- }
-
- char *lmemcpy(dest, source, len)
- char *dest, *source;
- long len;
- {
- _bcopy(source, dest, len);
- return dest;
- }
-